home *** CD-ROM | disk | FTP | other *** search
/ BBS in a Box 3 / BBS in a box - Trilogy III.iso / Files / Prog / D-G / GemsI / Src / PolyScan / Makefile < prev    next >
Encoding:
Makefile  |  1992-06-16  |  380 b   |  13 lines  |  [TEXT/MPS ]

  1. # Makefile for scantest, test program for generic convex polygon scan conversion
  2. #
  3. # Note: fancytest.c needs a main routine and several auxiliary routines
  4. # in order to be compiled.
  5.  
  6. CFLAGS = $(GENCFLAGS)
  7.  
  8. scantest: scantest.o poly_scan.o poly.o
  9.     $(CC) $(CFLAGS) -o scantest scantest.o poly_scan.o poly.o -lm
  10.  
  11. clean:
  12.     /bin/rm -f scantest.o poly_clip.o poly_scan.o poly.o scantest
  13.